home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.2 / Bullet / clib / bullet_protos.h
Encoding:
C/C++ Source or Header  |  1992-09-01  |  1.0 KB  |  30 lines

  1. #ifndef  CLIB_BULLET_PROTOS_H
  2. #define  CLIB_BULLET_PROTOS_H
  3. /*
  4. **    $Id: bullet_protos.h,v 7.0 91/03/19 18:35:29 kodiak Exp $
  5. **
  6. **    C prototypes
  7. **
  8. **    (C) Copyright 1990 Commodore-Amiga, Inc.
  9. **        All Rights Reserved
  10. */
  11. /* "bullet.library" */
  12. #ifndef  UTILITY_TAGITEM_H
  13. #include <utility/tagitem.h>
  14. #endif
  15. #ifndef  LIBRARIES_GLYPH_H
  16. #include <libraries/glyph.h>
  17. #endif
  18. struct GlyphEngine *OpenEngine( void );
  19. void CloseEngine( struct GlyphEngine *glyphEngine );
  20. ULONG SetInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  21. ULONG SetInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  22. ULONG ObtainInfoA( struct GlyphEngine *glyphEngine, struct TagItem *tagList );
  23. ULONG ObtainInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  24. ULONG ReleaseInfoA( struct GlyphEngine *glyphEngine,
  25.     struct TagItem *tagList );
  26. ULONG ReleaseInfo( struct GlyphEngine *glyphEngine, Tag tag1, ... );
  27. ULONG GetGlyphMap( struct GlyphEngine *glyphEngine, unsigned long glyphCode,
  28.     struct GlyphMap **glyphMap );
  29. #endif   /* CLIB_BULLET_PROTOS_H */
  30.